home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / pcl / cl-nd-cl.lha / clue / clio / sysdef.lisp < prev    next >
Lisp/Scheme  |  1992-06-02  |  859b  |  44 lines

  1. ;;; -*- Mode: Lisp; Package: DSYS; Base: 10; Syntax: Common-Lisp -*-
  2.  
  3. (in-package "DSYS")
  4.  
  5. (defsystem clio
  6.     (:pretty-name "Common Lisp Interactive Objects")
  7.   (:module clue clue (:type :system))
  8.   (:parallel
  9.    clue
  10.    (:parallel
  11.     (:forms :compile 
  12.         (progn
  13.           (setq *compile-system-proclamation* *normal-declaration*)
  14.           (proclaim *compile-system-proclamation*)
  15.           #+akcl (setq compiler::*compile-ordinaries* t)))
  16.     "clio"
  17.     "exports"
  18.     (:load "precom")
  19.     "ol-defs"
  20.     "utility"
  21.     "core-mixins"
  22.     "gravity"
  23.     "buffer"
  24.     "text-command"
  25.     "display-text"
  26.     "ol-images"
  27.     "buttons"
  28.     "confirm"
  29.     "scroller"
  30.     "table"
  31.     "choices"
  32.     "form"
  33.     "menu"
  34.     "psheet"
  35.     "command"
  36.     "edit-text"
  37.     "slider"
  38.     "scroll-frame"
  39.     "mchoices"
  40.     "dlog-button"
  41.     "display-imag"
  42.     (:compile "precom")
  43.     )))
  44.